home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / VGX / shadows / glotopdat.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  2KB  |  59 lines

  1. /*
  2.  * Copyright 1991, 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. /*
  18.     glotopdat.c - glo_object ASCII file format to polydata binary file format
  19.     converter.
  20.  
  21.     Tim Heidmann, Silicon Graphics
  22.     June 26, 1991
  23. */
  24. #include <stdio.h>
  25. #include "glo_obj.h"
  26. #include "shadows.h"
  27.  
  28. PolyDataPtr
  29. GetPolyData(glo_ObjPtr);
  30.  
  31. main(int argc, char *argv[]) {
  32.     glo_ObjPtr myGLObj;
  33.     PolyDataPtr myPData;
  34.     char *inFile, *outFile;
  35.  
  36.     /* Parse and check the arguments */
  37.     if (argc == 3) {
  38.     inFile = argv[1]; outFile = argv[2];
  39.     } else {
  40.     fprintf(stderr, "usage: %s <infile.glo> <outfile.pdat>\n", argv[0]);
  41.     exit(1);
  42.     }
  43.  
  44.     /* Read the .glo file */
  45.     if ((myGLObj = glo_ReadObj(inFile)) == NULL) {
  46.     fprintf(stderr, "Cannot read input file %s\n", inFile);
  47.     exit(1);
  48.     }
  49.  
  50.     /* Build the edge-adjacency poly data lists */
  51.     myPData = GetPolyData(myGLObj);
  52.  
  53.     /* Write the combined structure to a file */
  54.     if (!WritePDataObj(outFile, myGLObj, myPData)) {
  55.     fprintf(stderr, "Cannot write output file %s\n", outFile);
  56.     exit(1);
  57.     }
  58. }
  59.